home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / history.def < prev    next >
Text File  |  1991-08-04  |  4KB  |  181 lines

  1. This file is history.def, from which is created history.c.
  2. It implements the builtin "history" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES history.c
  23.  
  24. $BUILTIN history
  25. $FUNCTION history_builtin
  26. $SHORT_DOC history [n] [ [-awrn] [filename]]
  27. Display the history list with line numbers.  Lines listed with
  28. with a `*' have been modified.  Argument of N says to list only
  29. the last N lines.  Argument `-w' means to write out the current
  30. history file;  `-r' means to read it instead.  Argument `-a' means
  31. to append history lines from this session to the history file.
  32. Argument `-n' means to read all history lines not already read
  33. from the history file.  If FILENAME is given, then use that file,
  34. else if $HISTFILE has a value, use that, else use ~/.bash_history.
  35. $END
  36.  
  37. #include "../shell.h"
  38. #include <sys/types.h>
  39. #include <sys/file.h>
  40. #include "../filecntl.h"
  41. #include "../posixstat.h"
  42. #include <readline/history.h>
  43.  
  44. /* History.  Arg of -w FILENAME means write file, arg of -r FILENAME
  45.    means read file.  Arg of N means only display that many items. */
  46.  
  47. history_builtin (list)
  48.      WORD_LIST *list;
  49. {
  50.   register int i;
  51.   int limited = 0, limit = 0;
  52.   HIST_ENTRY **hlist;
  53.  
  54.   while (list)
  55.     {
  56.       char *arg = list->word->word;
  57.  
  58.       if ((arg[0] == '-') &&
  59.       (strlen (arg) == 2) &&
  60.       (member (arg[1], "rwan")))
  61.     {
  62.       char *file;
  63.       int result = EXECUTION_SUCCESS;
  64.  
  65.       if (list->next)
  66.         file = list->next->word->word;
  67.       else
  68.         file = get_string_value ("HISTFILE");
  69.  
  70.       switch (arg[1])
  71.         {
  72.         case 'a':        /* Append `new' lines to file. */
  73.           {
  74.         extern int history_lines_this_session;
  75.         extern int history_lines_in_file;
  76.  
  77.         if (history_lines_this_session)
  78.           {
  79.             void using_history ();
  80.  
  81.             if (history_lines_this_session < where_history ())
  82.               {
  83.             /* If the filename was supplied, then create it
  84.                if it doesn't already exist. */
  85.             if (file)
  86.               {
  87.                 struct stat buf;
  88.  
  89.                 if (stat (file, &buf) == -1)
  90.                   {
  91.                 int tem;
  92.  
  93.                 tem = open (file, O_CREAT, 0666);
  94.                 close (tem);
  95.                   }
  96.               }
  97.  
  98.             result =
  99.               append_history (history_lines_this_session, file);
  100.             history_lines_in_file += history_lines_this_session;
  101.             history_lines_this_session = 0;
  102.               }
  103.           }
  104.         break;
  105.           }
  106.  
  107.         case 'w':        /* Write entire history. */
  108.           {
  109.         result = write_history (file);
  110.         break;
  111.           }
  112.  
  113.         case 'r':        /* Read entire file. */
  114.           {
  115.         result = read_history (file);
  116.         break;
  117.           }
  118.  
  119.         case 'n':        /* Read `new' history from file. */
  120.           {
  121.         extern int history_lines_in_file;
  122.  
  123.         /* Read all of the lines in the file that we haven't
  124.            already read. */
  125.         using_history ();
  126.         result =
  127.           read_history_range (file, history_lines_in_file, -1);
  128.         using_history ();
  129.         history_lines_in_file = where_history ();
  130.  
  131.         break;
  132.           }
  133.         }
  134.       return (result ? EXECUTION_FAILURE : EXECUTION_SUCCESS);
  135.     }
  136.       else if (strcmp (list->word->word, "--") == 0)
  137.     {
  138.       list = list->next;
  139.       break;
  140.     }
  141.       else if (*list->word->word == '-')
  142.     {
  143.       bad_option (list->word->word);
  144.       return (EXECUTION_FAILURE);
  145.     }
  146.       else
  147.     break;
  148.     }
  149.  
  150.   if (list)
  151.     {
  152.       limited = 1;
  153.       limit = get_numeric_arg (list);
  154.     }
  155.  
  156.   hlist = history_list ();
  157.  
  158.   if (hlist)
  159.     {
  160.       for (i = 0;  hlist[i]; i++);
  161.  
  162.       if (limit < 0)
  163.     limit = -limit;
  164.  
  165.       if (!limited)
  166.     i = 0;
  167.       else
  168.     if ((i -= limit) < 0)
  169.       i = 0;
  170.  
  171.       while (hlist[i])
  172.     {
  173.       QUIT;
  174.       printf ("%5d%c %s\n", i + history_base,
  175.           hlist[i]->data ? '*' : ' ', hlist[i]->line);
  176.       i++;
  177.     }
  178.     }
  179.   return (EXECUTION_SUCCESS);
  180. }
  181.